7c1ced7bab8e1b69e343bdac27cdb7dc7c7b280d,src/main/java/org/jdc/template/model/database/main/individual/IndividualBaseRecord.java,IndividualBaseRecord,bindUpdateStatement,#StatementWrapper#,181

Before Change


        } else {
            statement.bindNull(6);
        }
        if (org.dbtools.android.domain.DBToolsDateFormatter.localDateTimeToLong(lastModified) != null) {
            statement.bindLong(7, org.dbtools.android.domain.DBToolsDateFormatter.localDateTimeToLong(lastModified));
        } else {
            statement.bindNull(7);
        }
        if (org.dbtools.android.domain.DBToolsDateFormatter.localDateTimeToDBString(sampleDateTime) != null) {
            statement.bindString(8, org.dbtools.android.domain.DBToolsDateFormatter.localDateTimeToDBString(sampleDateTime));
        } else {
            statement.bindNull(8);
        }
        if (org.dbtools.android.domain.DBToolsDateFormatter.localDateTimeToLong(sampleTimestamp) != null) {
            statement.bindLong(9, org.dbtools.android.domain.DBToolsDateFormatter.localDateTimeToLong(sampleTimestamp));
        } else {
            statement.bindNull(9);
        }
        if (phone != null) {
            statement.bindString(10, phone);
        } else {
            statement.bindNull(10);
        }
        if (email != null) {
            statement.bindString(11, email);
        } else {
            statement.bindNull(11);
        }
        statement.bindLong( 12, available ? 1 : 0);
        if (spouseIndividualId != null) {

After Change


        } else {
            statement.bindNull(9);
        }
        statement.bindString(10, phone);
        statement.bindString(11, email);
        statement.bindLong(12, available ? 1 : 0);
        if (spouseIndividualId != null) {
            statement.bindLong(13, spouseIndividualId);